home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / message / subcls / getminmx.bas < prev    next >
Encoding:
BASIC Source File  |  1995-05-30  |  459 b   |  23 lines

  1. Option Explicit
  2.  
  3. ' Windows declarations
  4. Declare Sub hmemcpy Lib "Kernel" (lpDest As Any, lpSource As Any, ByVal nCount As Long)
  5.  
  6. ' Windows constants
  7. Global Const WM_GETMINMAXINFO = &H24
  8.  
  9. ' Windows data types
  10. Type POINTAPI
  11.     x As Integer
  12.     y As Integer
  13. End Type
  14.  
  15. Type MINMAXINFO
  16.     ptReserved As POINTAPI
  17.     ptMaxSize As POINTAPI
  18.     ptMaxPosition As POINTAPI
  19.     ptMinTrackSize As POINTAPI
  20.     ptMaxTrackSize As POINTAPI
  21. End Type
  22.  
  23.